home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / HIDECUR.CC < prev    next >
Text File  |  1993-04-04  |  199b  |  11 lines

  1. #include <dos.h>
  2. hide_cur()
  3. /* Turn the cursor off */
  4. {
  5.         union REGS inregs;
  6.         inregs.h.ah=1;
  7.         inregs.h.cl=7;
  8.         inregs.h.ch=0x26;
  9.         int86(0x10,&inregs,&inregs);
  10. }
  11.